a = 10
print("Integer:", a, "Type:", type(a))

b = 10.5
print("Float:", b, "Type:", type(b))

c = "AMMU"
print("String:", c, "Type:", type(c))

d = True
print("Boolean:", d, "Type:", type(d))

e = [1, 2, 3, 4]
print("List:", e, "Type:", type(e))

f = (5, 6, 7)
print("Tuple:", f, "Type:", type(f))

g = {"name": "Allen", "age": 20}
print("Dictionary:", g, "Type:", type(g))

h = {10, 20, 30}
print("Set:", h, "Type:", type(h))
